﻿:root {
    --brand-red: #8B0000;
    --brand-hover: #a50000;
    --brand-dark: #1a1a1a;
    --brand-dark-hover: #333333;
    --input-bg: #fdfdfd;
}

body {
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

.split-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.brand-side {
    background-color: var(--brand-red);
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 40px;
    text-align: center;
}

    .brand-side h1 {
        font-size: 2.8rem;
        font-weight: 800;
        margin-top: 25px;
        letter-spacing: -1px;
        line-height: 1.2;
    }

.form-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 40px;
}

.login-box {
    width: 100%;
    max-width: 400px;
}

.mobile-logo {
    display: none;
    margin-bottom: 2rem;
    text-align: center;
}

.login-box h2 {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 8px;
}

.form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #666;
}

.form-control {
    border: 1px solid #e0e0e0;
    background-color: var(--input-bg);
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

    .form-control:focus {
        border-color: var(--brand-red);
        box-shadow: 0 0 0 4px rgba(139, 0, 0, 0.05);
        background-color: #fff;
        outline: none;
    }

.btn-locate {
    background-color: var(--brand-dark);
    color: white;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

    .btn-locate:hover {
        background-color: var(--brand-dark-hover);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.links-footer a {
    color: var(--brand-red);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

    .links-footer a:hover {
        text-decoration: underline;
    }

@@media (max-width: 991px) {
    .brand-side {
        display: none;
    }

    .mobile-logo {
        display: block;
    }

    .form-side {
        padding: 20px;
        width: 100%;
    }

    .login-box {
        max-width: 100%;
    }
}
